home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / interp / tclStruct1.2.tar.gz / tclStruct1.2.tar / tclStruct1.2 / tclAppInit.c < prev    next >
C/C++ Source or Header  |  1995-09-12  |  3KB  |  111 lines

  1. /* 
  2.  * tclAppInit.c --
  3.  *
  4.  *    Provides a default version of the main program and Tcl_AppInit
  5.  *    procedure for Tcl applications (without Tk).
  6.  *
  7.  * Copyright (c) 1993 The Regents of the University of California.
  8.  * Copyright (c) 1994-1995 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  */
  13. #ifndef lint
  14. static char sccsid[] = "@(#) tclAppInit.c 1.13 95/06/08 10:55:54";
  15. static char Struct_appinitID[] = "@(#)tclStruct:tclAppInit.c    1.2    95/09/08";
  16. #endif
  17.  
  18. #include "tcl.h"
  19. #include "tclStruct.h"
  20.  
  21. /*
  22.  * The following variable is a special hack that is needed in order for
  23.  * Sun shared libraries to be used for Tcl.
  24.  */
  25.  
  26. extern int matherr();
  27. int *tclDummyMathPtr = (int *) matherr;
  28.  
  29. /*
  30.  *----------------------------------------------------------------------
  31.  *
  32.  * main --
  33.  *
  34.  *    This is the main program for the application.
  35.  *
  36.  * Results:
  37.  *    None: Tcl_Main never returns here, so this procedure never
  38.  *    returns either.
  39.  *
  40.  * Side effects:
  41.  *    Whatever the application does.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. int
  47. main(argc, argv)
  48.     int argc;            /* Number of command-line arguments. */
  49.     char **argv;        /* Values of command-line arguments. */
  50. {
  51.     Tcl_Main(argc, argv, Tcl_AppInit);
  52.     return 0;            /* Needed only to prevent compiler warning. */
  53. }
  54.  
  55. /*
  56.  *----------------------------------------------------------------------
  57.  *
  58.  * Tcl_AppInit --
  59.  *
  60.  *    This procedure performs application-specific initialization.
  61.  *    Most applications, especially those that incorporate additional
  62.  *    packages, will have their own version of this procedure.
  63.  *
  64.  * Results:
  65.  *    Returns a standard Tcl completion code, and leaves an error
  66.  *    message in interp->result if an error occurs.
  67.  *
  68.  * Side effects:
  69.  *    Depends on the startup script.
  70.  *
  71.  *----------------------------------------------------------------------
  72.  */
  73.  
  74. int
  75. Tcl_AppInit(interp)
  76.     Tcl_Interp *interp;        /* Interpreter for application. */
  77. {
  78.     if (Tcl_Init(interp) == TCL_ERROR) {
  79.     return TCL_ERROR;
  80.     }
  81.  
  82.     /*
  83.      * Call the init procedures for included packages.  Each call should
  84.      * look like this:
  85.      *
  86.      * if (Mod_Init(interp) == TCL_ERROR) {
  87.      *     return TCL_ERROR;
  88.      * }
  89.      *
  90.      * where "Mod" is the name of the module.
  91.      */
  92.     if (Struct_Init(interp) == TCL_ERROR) {
  93.     return TCL_ERROR;
  94.     }
  95.  
  96.     /*
  97.      * Call Tcl_CreateCommand for application-specific commands, if
  98.      * they weren't already created by the init procedures called above.
  99.      */
  100.  
  101.     /*
  102.      * Specify a user-specific startup file to invoke if the application
  103.      * is run interactively.  Typically the startup file is "~/.apprc"
  104.      * where "app" is the name of the application.  If this line is deleted
  105.      * then no user-specific startup file will be run under any conditions.
  106.      */
  107.     /* tcl_RcFileName = "~/.tclshrc"; */
  108.  
  109.     return TCL_OK;
  110. }
  111.